home *** CD-ROM | disk | FTP | other *** search
- /* This while loop ends when I say it ends, got it? */
- using System;
-
- namespace Chapter2 {
- class Class1 {
- static void Main() {
- string Quit = "no";
-
- while (Quit != "yes") {
- Console.Write("\n Would you like to end this loop? ");
- Quit = Console.ReadLine();
- }
-
- Console.WriteLine ("Program complete!\n");
- }
- }
- }
-
-